home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -in_the_mag- / program_perfection / memory.h < prev    next >
C/C++ Source or Header  |  1999-12-08  |  355b  |  30 lines

  1. #ifndef MEMORY_H
  2. #define MEMORY_H
  3.  
  4. /*
  5.  * memory.h
  6.  *
  7.  * Replacement memory management routines (using pools)
  8.  *
  9.  * $Id :$
  10.  * $Log:$
  11.  *
  12.  */
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17.  
  18. #ifndef  EXEC_MEMORY_H
  19. #include <exec/memory.h>
  20. #endif
  21.  
  22.  
  23. APTR Memory_Alloc( ULONG size );
  24. VOID Memory_Free( APTR memory, ULONG size );
  25.  
  26.  
  27.  
  28. #endif /* MEMORY_H */
  29.  
  30.